home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * stupid definitions
- */
- #define SOMEDEFS
- #include "ray.h"
-
- int noo;
- int nos, nosq, noq, noc;
-
- int tries;
-
- double time1, time2;
- double time;
- struct vector hor, ver, eye_dir, eye, up;
- double fov;
- double foc, lens;
-
- int bgflag;
-
- #ifdef HOST
- struct obj *obj;
- #endif
- #ifndef HOST
- #define MAX_OBJS 10
- struct obj *obj;
- #endif
-
- struct light light;
- int xres = 128, yres = 128;
-
- int objtestline;
- int shadowline;
- int reflectline;
- int refractline;
- int rayline;
- int intersectline;
-
- int shadowcount;
- int raycount;
- int objtestcount;
- int reflectcount;
- int refractcount;
- int intersectcount;
-